enum {
PROP_0,
- PROP_SURFACE_TYPE,
PROP_CURSOR,
PROP_DISPLAY,
PROP_FRAME_CLOCK,
{
/* 0-initialization is good for all other fields. */
- surface->surface_type = GDK_SURFACE_TOPLEVEL;
-
surface->state = GDK_SURFACE_STATE_WITHDRAWN;
surface->fullscreen_mode = GDK_FULLSCREEN_ON_CURRENT_MONITOR;
surface->width = 1;
FALSE,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
- properties[PROP_SURFACE_TYPE] =
- g_param_spec_enum ("surface-type",
- P_("Surface type"),
- P_("Surface type"),
- GDK_TYPE_SURFACE_TYPE, GDK_SURFACE_TOPLEVEL,
- G_PARAM_READWRITE | G_PARAM_CONSTRUCT_ONLY | G_PARAM_STATIC_STRINGS);
-
g_object_class_install_properties (object_class, LAST_PROP, properties);
/**
gdk_surface_set_frame_clock (surface, GDK_FRAME_CLOCK (g_value_get_object (value)));
break;
- case PROP_SURFACE_TYPE:
- surface->surface_type = g_value_get_enum (value);
- break;
-
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
g_value_set_boolean (value, GDK_SURFACE_IS_MAPPED (surface));
break;
- case PROP_SURFACE_TYPE:
- g_value_set_enum (value, surface->surface_type);
- break;
-
default:
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
break;
return surface->widget;
}
-/**
- * gdk_surface_get_surface_type:
- * @surface: a #GdkSurface
- *
- * Gets the type of the surface. See #GdkSurfaceType.
- *
- * Returns: type of surface
- **/
-GdkSurfaceType
-gdk_surface_get_surface_type (GdkSurface *surface)
-{
- g_return_val_if_fail (GDK_IS_SURFACE (surface), (GdkSurfaceType) -1);
-
- return GDK_SURFACE_TYPE (surface);
-}
-
/**
* gdk_surface_get_display:
* @surface: a #GdkSurface
G_BEGIN_DECLS
-/**
- * GdkSurfaceType:
- * @GDK_SURFACE_TOPLEVEL: toplevel window (used to implement #GtkWindow)
- * @GDK_SURFACE_TEMP: override redirect temporary surface (used to implement #GtkMenu)
- * @GDK_SURFACE_POPUP: popup window with semantics like xdg-popover
- *
- * Describes the kind of surface.
- */
-typedef enum
-{
- GDK_SURFACE_TOPLEVEL,
- GDK_SURFACE_TEMP,
- GDK_SURFACE_POPUP
-} GdkSurfaceType;
-
/* Size restriction enumeration.
*/
/**
GDK_AVAILABLE_IN_ALL
void gdk_surface_destroy (GdkSurface *surface);
GDK_AVAILABLE_IN_ALL
-GdkSurfaceType gdk_surface_get_surface_type (GdkSurface *surface);
-GDK_AVAILABLE_IN_ALL
gboolean gdk_surface_is_destroyed (GdkSurface *surface);
GDK_AVAILABLE_IN_ALL